home *** CD-ROM | disk | FTP | other *** search
/ Developer CD Series 1992 June: ROMin Holiday / ADC Developer CD (1992-06) (''ROMin Holiday'')_iso / Developer Connection - 06-1992.iso / Development Platforms / Apple II / Apple II Sample Code / MPW IIGS SC / SC.021.Dynamo / dynamo.sample / makefile < prev    next >
Encoding:
Makefile  |  1990-06-03  |  818 b   |  28 lines  |  [TEXT/MPS ]

  1. ObjDir  = :o:
  2. App        = sample
  3. Objects = "{ObjDir}"sample.obj
  4. Server  = your.server:your.name:
  5.  
  6. {App} ƒ "{ObjDir}"sample.lnk
  7. #    duplicate -y -d "{ObjDir}"sample.bin≈ "{Server}"
  8.     DuplicateIIGS -y -mac "{ObjDir}"sample.bin≈ :
  9.  
  10. "{ObjDir}"sample.lnk ƒ "{Objects}" makefile
  11.     LinkIIGS -x ∂
  12.         -lib "{dynamo}"libs:rt.lib "{Objects}" ∂
  13.         -lseg sample1  -org $0800 ∂
  14.             "{ObjDir}"sample.obj(part1) ∂
  15.             "{ObjDir}"sample.obj(strspace) ∂
  16.         -lseg sample2  -org $8000 ∂
  17.             "{ObjDir}"sample.obj(part2) ∂
  18.         -lseg libstuff -org $9000 ∂
  19.             "{dynamo}"libs:rt.lib ∂
  20.         -lseg trash    -org $1F00 ∂
  21.             "{ObjDir}"sample.obj(varspace) ∂
  22.         -o "{ObjDir}"sample.lnk
  23.     makebiniigs "{ObjDir}"sample.lnk -o "{ObjDir}"sample.bin
  24.     Delete "{ObjDir}"sample.bin.4
  25.  
  26. "{ObjDir}"sample.obj    ƒ app.config makefile sample.a
  27.     asmiigs sample.a -o "{ObjDir}"sample.obj
  28.